1 Basic DESeq2 results exploration

Project: DESeq2-4v9-analysis.

2 Introduction

This report is meant to help explore DESeq2 (Love, Huber, and Anders, 2014) results and was generated using the regionReport (Collado-Torres, Jaffe, and Leek, 2016) package. While the report is rich, it is meant to just start the exploration of the results and exemplify some of the code used to do so. If you need a more in-depth analysis for your specific data set you might want to use the customCode argument. This report is based on the vignette of the DESeq2 (Love, Huber, and Anders, 2014) package which you can find here.

2.1 Code setup

This section contains the code for setting up the rest of the report.

## knitrBoostrap and device chunk options
load_install('knitr')
## Warning: package 'knitr' was built under R version 3.4.3
opts_chunk$set(bootstrap.show.code = FALSE, dev = device)
if(!outputIsHTML) opts_chunk$set(bootstrap.show.code = FALSE, dev = device, echo = FALSE)
#### Libraries needed

## Bioconductor
load_install('DESeq2')
if(isEdgeR) load_install('edgeR')

## CRAN
load_install('ggplot2')
if(!is.null(theme)) theme_set(theme)
load_install('knitr')
if(is.null(colors)) {
    load_install('RColorBrewer')
}
load_install('pheatmap')
load_install('DT')
load_install('devtools')
## Warning: package 'devtools' was built under R version 3.4.3
## Working behind the scenes
# load_install('knitcitations')
# load_install('rmarkdown')
## Optionally
# load_install('knitrBootstrap')

#### Code setup

## For ggplot
res.df <- as.data.frame(res)

## Sort results by adjusted p-values
ord <- order(res.df$padj, decreasing = FALSE)
res.df <- res.df[ord, ]
res.df <- cbind(data.frame(Feature = rownames(res.df)), res.df)
rownames(res.df) <- NULL

3 PCA

## Transform count data
rld <- tryCatch(rlog(dds), error = function(e) { rlog(dds, fitType = 'mean') })

## Perform PCA analysis and make plot
plotPCA(rld, intgroup = intgroup)

## Get percent of variance explained
data_pca <- plotPCA(rld, intgroup = intgroup, returnData = TRUE)
percentVar <- round(100 * attr(data_pca, "percentVar"))

The above plot shows the first two principal components that explain the variability in the data using the regularized log count data. If you are unfamiliar with principal component analysis, you might want to check the Wikipedia entry or this interactive explanation. In this case, the first and second principal component explain 30 and 14 percent of the variance respectively.

4 Sample-to-sample distances

## Obtain the sample euclidean distances
sampleDists <- dist(t(assay(rld)))
sampleDistMatrix <- as.matrix(sampleDists)
## Add names based on intgroup
rownames(sampleDistMatrix) <- apply(as.data.frame(colData(rld)[, intgroup]), 1,
    paste, collapse = ' : ')
colnames(sampleDistMatrix) <- NULL

## Define colors to use for the heatmap if none were supplied
if(is.null(colors)) {
    colors <- colorRampPalette( rev(brewer.pal(9, "Blues")) )(255)
}

## Make the heatmap
pheatmap(sampleDistMatrix, clustering_distance_rows = sampleDists,
    clustering_distance_cols = sampleDists, color = colors)

This plot shows how samples are clustered based on their euclidean distance using the regularized log transformed count data. This figure gives an overview of how the samples are hierarchically clustered. It is a complementary figure to the PCA plot.

5 MA plots

This section contains three MA plots (see Wikipedia) that compare the mean of the normalized counts against the log fold change. They show one point per feature. The points are shown in red if the feature has an adjusted p-value less than alpha, that is, the statistically significant features are shown in red.

## MA plot with alpha used in DESeq2::results()
plotMA(res, alpha = metadata(res)$alpha, main = paste('MA plot with alpha =',
    metadata(res)$alpha))

This first plot shows uses alpha = 0.1, which is the alpha value used to determine which resulting features were significant when running the function DESeq2::results().

## MA plot with alpha = 1/2 of the alpha used in DESeq2::results()
plotMA(res, alpha = metadata(res)$alpha / 2,
    main = paste('MA plot with alpha =', metadata(res)$alpha / 2))

This second MA plot uses alpha = 0.05 and can be used agains the first MA plot to identify which features have adjusted p-values between 0.05 and 0.1.

## MA plot with alpha corresponding to the one that gives the nBest features
nBest.actual <- min(nBest, nrow(head(res.df, n = nBest)))
nBest.alpha <- head(res.df, n = nBest)$padj[nBest.actual]
plotMA(res, alpha = nBest.alpha * 1.00000000000001,
    main = paste('MA plot for top', nBest.actual, 'features'))

The third and final MA plot uses an alpha such that the top 500 features are shown in the plot. These are the features that whose details are included in the top features interactive table.

6 P-values distribution

## P-value histogram plot
ggplot(res.df[!is.na(res.df$pvalue), ], aes(x = pvalue)) +
    geom_histogram(alpha=.5, position='identity', bins = 50) +
    labs(title='Histogram of unadjusted p-values') +
    xlab('Unadjusted p-values') +
    xlim(c(0, 1.0005))
## Warning: Removed 2 rows containing missing values (geom_bar).

This plot shows a histogram of the unadjusted p-values. It might be skewed right or left, or flat as shown in the Wikipedia examples. The shape depends on the percent of features that are differentially expressed. For further information on how to interpret a histogram of p-values check David Robinson’s post on this topic.

## P-value distribution summary
summary(res.df$pvalue)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max.    NA's 
##  0.0000  0.2432  0.5425  0.5223  0.8128  1.0000     258

This is the numerical summary of the distribution of the p-values.

## Split features by different p-value cutoffs
pval_table <- lapply(c(1e-04, 0.001, 0.01, 0.025, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5,
    0.6, 0.7, 0.8, 0.9, 1), function(x) {
    data.frame('Cut' = x, 'Count' = sum(res.df$pvalue <= x, na.rm = TRUE))
})
pval_table <- do.call(rbind, pval_table)
if(outputIsHTML) {
    kable(pval_table, format = 'markdown', align = c('c', 'c'))
} else {
    kable(pval_table)
}
Cut Count
0.0001 84
0.0010 197
0.0100 591
0.0250 945
0.0500 1407
0.1000 2248
0.2000 3637
0.3000 5041
0.4000 6478
0.5000 7887
0.6000 9311
0.7000 10868
0.8000 12505
0.9000 14410
1.0000 16961

This table shows the number of features with p-values less or equal than some commonly used cutoff values.

7 Adjusted p-values distribution

## Adjusted p-values histogram plot
ggplot(res.df[!is.na(res.df$padj), ], aes(x = padj)) +
    geom_histogram(alpha=.5, position='identity', bins = 50) +
    labs(title=paste('Histogram of', elementMetadata(res)$description[grep('adjusted', elementMetadata(res)$description)])) +
    xlab('Adjusted p-values') +
    xlim(c(0, 1.0005))
## Warning: Removed 2 rows containing missing values (geom_bar).

This plot shows a histogram of the BH adjusted p-values. It might be skewed right or left, or flat as shown in the Wikipedia examples.

## Adjusted p-values distribution summary
summary(res.df$padj)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max.    NA's 
##   0.000   0.642   0.846   0.753   0.944   1.000    6501

This is the numerical summary of the distribution of the BH adjusted p-values.

## Split features by different adjusted p-value cutoffs
padj_table <- lapply(c(1e-04, 0.001, 0.01, 0.025, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5,
    0.6, 0.7, 0.8, 0.9, 1), function(x) {
    data.frame('Cut' = x, 'Count' = sum(res.df$padj <= x, na.rm = TRUE))
})
padj_table <- do.call(rbind, padj_table)
if(outputIsHTML) {
    kable(padj_table, format = 'markdown', align = c('c', 'c'))
} else {
    kable(padj_table)
}
Cut Count
0.0001 6
0.0010 30
0.0100 77
0.0250 115
0.0500 160
0.1000 307
0.2000 589
0.3000 878
0.4000 1246
0.5000 1746
0.6000 2388
0.7000 3174
0.8000 4655
0.9000 6565
1.0000 10718

This table shows the number of features with BH adjusted p-values less or equal than some commonly used cutoff values.

8 Top features

This interactive table shows the top 500 features ordered by their BH adjusted p-values. Use the search function to find your feature of interest or sort by one of the columns.

## Add search url if appropriate
if(!is.null(searchURL) & outputIsHTML) {
    res.df$Feature <- paste0('<a href="', searchURL, res.df$Feature, '">',
        res.df$Feature, '</a>')
}

for(i in which(colnames(res.df) %in% c('pvalue', 'padj'))) res.df[, i] <- format(res.df[, i], scientific = TRUE)

if(outputIsHTML) {
    datatable(head(res.df, n = nBest), options = list(pagingType='full_numbers', pageLength=10, scrollX='100%'), escape = FALSE, rownames = FALSE) %>% formatRound(which(!colnames(res.df) %in% c('pvalue', 'padj', 'Feature')), digits)
} else {
    res.df_top <- head(res.df, n = 20)
    for(i in which(!colnames(res.df) %in% c('pvalue', 'padj', 'Feature'))) res.df_top[, i] <- round(res.df_top[, i], digits)
    kable(res.df_top)
}

9 Count plots top features

This section contains plots showing the normalized counts per sample for each group of interest. Only the best 20 features are shown, ranked by their BH adjusted p-values. The Y axis is on the log10 scale and the feature name is shown in the title of each plot.

plotCounts_gg <- function(i, dds, intgroup) {
    group <- if (length(intgroup) == 1) {
        colData(dds)[[intgroup]]
    } else if (length(intgroup) == 2) {
        lvls <- as.vector(t(outer(levels(colData(dds)[[intgroup[1]]]), 
            levels(colData(dds)[[intgroup[2]]]), function(x, 
                y) paste(x, y, sep = " : "))))
        droplevels(factor(apply(as.data.frame(colData(dds)[, 
            intgroup, drop = FALSE]), 1, paste, collapse = " : "), 
            levels = lvls))
    } else {
        factor(apply(as.data.frame(colData(dds)[, intgroup, drop = FALSE]), 
            1, paste, collapse = " : "))
    }
    data <- plotCounts(dds, gene=i, intgroup=intgroup, returnData = TRUE)
    data <- cbind(data, data.frame('group' = group))
    main <- rownames(dds)[i]

    ggplot(data, aes(x = group, y = count)) + geom_point() + ylab('Normalized count') + ggtitle(main) + coord_trans(y = "log10")
}
for(i in head(ord, nBestFeatures)) {
    print(plotCounts_gg(i, dds = dds, intgroup = intgroup))
}

10 Reproducibility

The input for this report was generated with DESeq2 (Love, Huber, and Anders, 2014) using version 1.18.1 and the resulting features were called significantly differentially expressed if their BH adjusted p-values were less than alpha = 0.1. This report was generated in path /Users/vegardnygaard/prosjekter/rprojects/waaler-et-al-2018/troubleshooting using the following call to DESeq2Report():

## DESeq2Report(dds = dds, project = "DESeq2-4v9-analysis", intgroup = c("venngroup", 
##     "treatment"), outdir = "Analyse")

Date the report was generated.

## [1] "2018-11-09 14:12:40 GMT"

Wallclock time spent generating the report.

## Time difference of 1.285 mins

R session information.

## Session info ----------------------------------------------------------------------------------------------------------
##  setting  value                       
##  version  R version 3.4.2 (2017-09-28)
##  system   x86_64, darwin15.6.0        
##  ui       RStudio (1.1.383)           
##  language (EN)                        
##  collate  en_US.UTF-8                 
##  tz       <NA>                        
##  date     2018-11-09
## Packages --------------------------------------------------------------------------------------------------------------
##  package              * version   date       source                           
##  acepack                1.4.1     2016-10-29 CRAN (R 3.4.0)                   
##  annotate               1.56.2    2018-03-22 Bioconductor                     
##  AnnotationDbi          1.40.0    2017-10-31 Bioconductor                     
##  assertthat             0.2.0     2017-04-11 CRAN (R 3.4.0)                   
##  backports              1.1.2     2017-12-13 CRAN (R 3.4.3)                   
##  base                 * 3.4.2     2017-10-04 local                            
##  base64enc              0.1-3     2015-07-28 CRAN (R 3.4.0)                   
##  bibtex                 0.4.2     2017-06-30 CRAN (R 3.4.1)                   
##  bindr                  0.1.1     2018-03-13 CRAN (R 3.4.4)                   
##  bindrcpp               0.2.2     2018-03-29 CRAN (R 3.4.4)                   
##  Biobase              * 2.38.0    2017-10-31 Bioconductor                     
##  BiocGenerics         * 0.24.0    2017-10-31 Bioconductor                     
##  BiocParallel           1.12.0    2017-10-31 Bioconductor                     
##  BiocStyle            * 2.6.1     2017-11-30 Bioconductor                     
##  biomaRt                2.34.2    2018-01-20 Bioconductor                     
##  Biostrings             2.46.0    2017-10-31 Bioconductor                     
##  bit                    1.1-12    2014-04-09 CRAN (R 3.4.0)                   
##  bit64                  0.9-7     2017-05-08 CRAN (R 3.4.0)                   
##  bitops                 1.0-6     2013-08-17 CRAN (R 3.4.0)                   
##  blob                   1.1.0     2017-06-17 CRAN (R 3.4.0)                   
##  bookdown               0.7       2018-02-18 CRAN (R 3.4.3)                   
##  BSgenome               1.46.0    2017-10-31 Bioconductor                     
##  bumphunter             1.20.0    2017-10-31 Bioconductor                     
##  caTools                1.17.1    2014-09-10 CRAN (R 3.4.0)                   
##  checkmate              1.8.5     2017-10-24 CRAN (R 3.4.2)                   
##  cluster                2.0.6     2017-03-10 CRAN (R 3.4.2)                   
##  codetools              0.2-15    2016-10-05 CRAN (R 3.4.2)                   
##  colorspace             1.3-2     2016-12-14 CRAN (R 3.4.0)                   
##  compiler               3.4.2     2017-10-04 local                            
##  crosstalk              1.0.0     2016-12-21 CRAN (R 3.4.0)                   
##  data.table             1.10.4-3  2017-10-27 CRAN (R 3.4.2)                   
##  datasets             * 3.4.2     2017-10-04 local                            
##  DBI                    0.8       2018-03-02 CRAN (R 3.4.3)                   
##  DEFormats              1.6.1     2018-02-08 Bioconductor                     
##  DelayedArray         * 0.4.1     2017-11-07 Bioconductor                     
##  derfinder              1.12.6    2018-01-21 Bioconductor                     
##  derfinderHelper        1.12.0    2017-10-31 Bioconductor                     
##  DESeq2               * 1.18.1    2017-11-12 Bioconductor                     
##  devtools             * 1.13.5    2018-02-18 CRAN (R 3.4.3)                   
##  digest                 0.6.15    2018-01-28 CRAN (R 3.4.3)                   
##  doRNG                  1.7.1     2018-06-22 CRAN (R 3.4.4)                   
##  dplyr                  0.7.7     2018-10-16 CRAN (R 3.4.4)                   
##  DT                   * 0.4       2018-01-30 CRAN (R 3.4.3)                   
##  edgeR                  3.20.9    2018-02-27 Bioconductor                     
##  evaluate               0.10.1    2017-06-24 CRAN (R 3.4.1)                   
##  foreach                1.4.4     2017-12-12 CRAN (R 3.4.3)                   
##  foreign                0.8-69    2017-06-22 CRAN (R 3.4.2)                   
##  Formula                1.2-2     2017-07-10 CRAN (R 3.4.1)                   
##  gdata                  2.18.0    2017-06-06 CRAN (R 3.4.0)                   
##  genefilter           * 1.60.0    2017-10-31 Bioconductor                     
##  geneplotter            1.56.0    2017-10-31 Bioconductor                     
##  GenomeInfoDb         * 1.14.0    2017-10-31 Bioconductor                     
##  GenomeInfoDbData       1.0.0     2018-01-12 Bioconductor                     
##  GenomicAlignments      1.14.1    2017-11-18 Bioconductor                     
##  GenomicFeatures        1.30.3    2018-02-02 Bioconductor                     
##  GenomicFiles           1.14.0    2017-10-31 Bioconductor                     
##  GenomicRanges        * 1.30.3    2018-02-26 Bioconductor                     
##  ggplot2              * 3.1.0     2018-10-25 CRAN (R 3.4.4)                   
##  glue                   1.2.0     2017-10-29 CRAN (R 3.4.2)                   
##  gplots               * 3.0.1     2016-03-30 CRAN (R 3.4.0)                   
##  graphics             * 3.4.2     2017-10-04 local                            
##  grDevices            * 3.4.2     2017-10-04 local                            
##  grid                   3.4.2     2017-10-04 local                            
##  gridExtra              2.3       2017-09-09 CRAN (R 3.4.1)                   
##  gtable                 0.2.0     2016-02-26 CRAN (R 3.4.0)                   
##  gtools                 3.5.0     2015-05-29 CRAN (R 3.4.0)                   
##  highr                  0.6       2016-05-09 CRAN (R 3.4.0)                   
##  Hmisc                  4.1-1     2018-01-03 CRAN (R 3.4.3)                   
##  htmlTable              1.11.2    2018-01-20 CRAN (R 3.4.3)                   
##  htmltools              0.3.6     2017-04-28 CRAN (R 3.4.0)                   
##  htmlwidgets            1.0       2018-01-20 CRAN (R 3.4.3)                   
##  httpuv                 1.3.6.2   2018-03-02 CRAN (R 3.4.3)                   
##  httr                   1.3.1     2017-08-20 CRAN (R 3.4.1)                   
##  IRanges              * 2.12.0    2017-10-31 Bioconductor                     
##  iterators              1.0.9     2017-12-12 CRAN (R 3.4.3)                   
##  jsonlite               1.5       2017-06-01 CRAN (R 3.4.0)                   
##  KernSmooth             2.23-15   2015-06-29 CRAN (R 3.4.2)                   
##  knitcitations          1.0.8     2017-07-04 CRAN (R 3.4.1)                   
##  knitr                * 1.20      2018-02-20 CRAN (R 3.4.3)                   
##  knitrBootstrap         1.0.2     2018-05-24 CRAN (R 3.4.4)                   
##  labeling               0.3       2014-08-23 CRAN (R 3.4.0)                   
##  lattice                0.20-35   2017-03-25 CRAN (R 3.4.2)                   
##  latticeExtra           0.6-28    2016-02-09 CRAN (R 3.4.0)                   
##  lazyeval               0.2.1     2017-10-29 CRAN (R 3.4.2)                   
##  limma                  3.34.9    2018-02-22 Bioconductor                     
##  locfit                 1.5-9.1   2013-04-20 CRAN (R 3.4.0)                   
##  lubridate              1.7.4     2018-04-11 CRAN (R 3.4.4)                   
##  magrittr               1.5       2014-11-22 CRAN (R 3.4.0)                   
##  markdown               0.8       2017-04-20 CRAN (R 3.4.0)                   
##  Matrix                 1.2-12    2017-11-15 CRAN (R 3.4.2)                   
##  matrixStats          * 0.53.1    2018-02-11 CRAN (R 3.4.3)                   
##  memoise                1.1.0     2017-04-21 CRAN (R 3.4.0)                   
##  methods              * 3.4.2     2017-10-04 local                            
##  mime                   0.5       2016-07-07 CRAN (R 3.4.0)                   
##  munsell                0.4.3     2016-02-13 CRAN (R 3.4.0)                   
##  nnet                   7.3-12    2016-02-02 CRAN (R 3.4.2)                   
##  parallel             * 3.4.2     2017-10-04 local                            
##  pheatmap             * 1.0.10    2018-05-19 CRAN (R 3.4.4)                   
##  pillar                 1.2.1     2018-02-27 CRAN (R 3.4.3)                   
##  pkgconfig              2.0.1     2017-03-21 CRAN (R 3.4.0)                   
##  pkgmaker               0.26.11   2018-03-15 Github (renozao/pkgmaker@48c6556)
##  plyr                   1.8.4     2016-06-08 CRAN (R 3.4.0)                   
##  prettyunits            1.0.2     2015-07-13 CRAN (R 3.4.0)                   
##  progress               1.1.2     2016-12-14 CRAN (R 3.4.0)                   
##  purrr                  0.2.4     2017-10-18 CRAN (R 3.4.2)                   
##  qvalue                 2.10.0    2017-10-31 Bioconductor                     
##  R6                     2.2.2     2017-06-17 CRAN (R 3.4.0)                   
##  RColorBrewer         * 1.1-2     2014-12-07 CRAN (R 3.4.0)                   
##  Rcpp                   0.12.19   2018-10-01 CRAN (R 3.4.4)                   
##  RCurl                  1.95-4.10 2018-01-04 CRAN (R 3.4.3)                   
##  RefManageR             1.2.0     2018-04-25 CRAN (R 3.4.4)                   
##  regionReport         * 1.12.2    2018-01-21 Bioconductor                     
##  registry               0.5       2017-12-03 CRAN (R 3.4.3)                   
##  reshape2               1.4.3     2017-12-11 CRAN (R 3.4.3)                   
##  rlang                  0.3.0.1   2018-10-25 CRAN (R 3.4.4)                   
##  rmarkdown              1.9       2018-03-01 CRAN (R 3.4.3)                   
##  RMySQL                 0.10.14   2018-02-26 CRAN (R 3.4.3)                   
##  rngtools               1.3.1     2018-05-15 CRAN (R 3.4.4)                   
##  rpart                  4.1-13    2018-02-23 CRAN (R 3.4.3)                   
##  rprojroot              1.3-2     2018-01-03 CRAN (R 3.4.2)                   
##  Rsamtools              1.30.0    2017-10-31 Bioconductor                     
##  RSQLite                2.0       2017-06-19 CRAN (R 3.4.1)                   
##  rstudioapi             0.7       2017-09-07 CRAN (R 3.4.1)                   
##  rtracklayer            1.38.3    2018-01-23 Bioconductor                     
##  S4Vectors            * 0.16.0    2017-10-31 Bioconductor                     
##  scales                 0.5.0     2017-08-24 CRAN (R 3.4.1)                   
##  shiny                  1.0.5     2017-08-23 CRAN (R 3.4.1)                   
##  splines                3.4.2     2017-10-04 local                            
##  stats                * 3.4.2     2017-10-04 local                            
##  stats4               * 3.4.2     2017-10-04 local                            
##  stringi                1.1.7     2018-03-12 cran (@1.1.7)                    
##  stringr                1.3.0     2018-02-19 CRAN (R 3.4.3)                   
##  SummarizedExperiment * 1.8.1     2017-12-19 Bioconductor                     
##  survival               2.41-3    2017-04-04 CRAN (R 3.4.2)                   
##  tibble                 1.4.2     2018-01-22 CRAN (R 3.4.3)                   
##  tidyselect             0.2.4     2018-02-26 CRAN (R 3.4.3)                   
##  tools                  3.4.2     2017-10-04 local                            
##  utils                * 3.4.2     2017-10-04 local                            
##  VariantAnnotation      1.24.5    2018-01-06 Bioconductor                     
##  withr                  2.1.1     2017-12-19 CRAN (R 3.4.3)                   
##  xfun                   0.4       2018-10-23 CRAN (R 3.4.4)                   
##  XML                    3.98-1.10 2018-02-19 CRAN (R 3.4.3)                   
##  xml2                   1.2.0     2018-01-24 CRAN (R 3.4.3)                   
##  xtable                 1.8-2     2016-02-05 CRAN (R 3.4.0)                   
##  XVector                0.18.0    2017-10-31 Bioconductor                     
##  yaml                   2.1.17    2018-02-27 CRAN (R 3.4.3)                   
##  zlibbioc               1.24.0    2017-10-31 Bioconductor

Pandoc version used: 1.19.2.1.

11 Bibliography

This report was created with regionReport (Collado-Torres, Jaffe, and Leek, 2016) using rmarkdown (Allaire, Xie, McPherson, Luraschi, et al., 2018) while knitr (Xie, 2014) and DT (Xie, 2018) were running behind the scenes. pheatmap (Kolde, 2018) was used to create the sample distances heatmap. Several plots were made with ggplot2 (Wickham, 2016).

Citations made with knitcitations (Boettiger, 2017). The BibTeX file can be found here.

[1] J. Allaire, Y. Xie, J. McPherson, J. Luraschi, et al. rmarkdown: Dynamic Documents for R. R package version 1.9. 2018. URL: https://CRAN.R-project.org/package=rmarkdown.

[1] C. Boettiger. knitcitations: Citations for ‘Knitr’ Markdown Files. R package version 1.0.8. 2017. URL: https://CRAN.R-project.org/package=knitcitations.

## No encoding supplied: defaulting to UTF-8.

[1] R. Kolde. pheatmap: Pretty Heatmaps. R package version 1.0.10. 2018. URL: https://CRAN.R-project.org/package=pheatmap.

## No encoding supplied: defaulting to UTF-8.

[1] H. Wickham. ggplot2: Elegant Graphics for Data Analysis. Springer-Verlag New York, 2016. ISBN: 978-3-319-24277-4. URL: http://ggplot2.org.

[1] Y. Xie. DT: A Wrapper of the JavaScript Library ‘DataTables’. R package version 0.4. 2018. URL: https://CRAN.R-project.org/package=DT.

[1] Y. Xie. “knitr: A Comprehensive Tool for Reproducible Research in R”. In: Implementing Reproducible Computational Research. Ed. by V. Stodden, F. Leisch and R. D. Peng. ISBN 978-1466561595. Chapman and Hall/CRC, 2014. URL: http://www.crcpress.com/product/isbn/9781466561595.